PowerTools PlusPak for Windows Forms 8.0J
AddRange(Keys[],String[]) メソッド
使用例 

キー値(配列)。
ボタンのキー(配列)。
キー項目(配列)を追加します。
構文
Public Overloads Sub AddRange( _
   ByVal keys() As Keys, _
   ByVal buttonKeys() As String _
) 
public void AddRange( 
   Keys[] keys,
   string[] buttonKeys
)

パラメータ

keys
キー値(配列)。
buttonKeys
ボタンのキー(配列)。
例外
例外解説
System.ArgumentExceptionkeys 配列と buttonKeys 配列の長さは同じである必要があります。
使用例
次のサンプルコードは、AddRange メソッドを使ってボタンの機能をキーに割り付ける方法を示します。
' 2つのキー[P]と[M]にボタンの"+"と"-"を設定します。 
Dim keysSpecified As Keys() = {Keys.P, Keys.M} 
Dim buttonsSpecified As String() = {"+", "-"} 
GcCalculator1.ButtonMappings.AddRange(keysSpecified, buttonsSpecified)
// 2つのキー[P]と[M]にボタンの"+"と"-"を設定します。 
Keys[] keysSpecified = {Keys.P, Keys.M}; 
string[] buttonsSpecified = {"+", "-"}; 
GcCalculator1.ButtonMappings.AddRange(keysSpecified, buttonsSpecified);
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

CalculatorButtonMappingCollection クラス
CalculatorButtonMappingCollection メンバ
オーバーロード一覧

Send Feedback